home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir34 / fdform18.zip / MAKEFILE < prev    next >
Text File  |  1991-07-21  |  2KB  |  83 lines

  1. #To use this MAKEFIILE, you need:
  2. #
  3. #Turbo-Pascal 6.0
  4. #Turbo-Assembler 1.00 or higher
  5. #4DOS Version 3.00 or higher
  6. #LZEXE Version 0.91
  7.  
  8.  
  9. #Assembler-Options
  10. AOPT = /w2 /jQuirks
  11.  
  12. #Delete garbage
  13. DELMAP = $(COMSPEC) /C DEL *.obj *.map *.bak *.sik *.old
  14.  
  15. #Don't generate 286 Code
  16. 286 = /$G-
  17.  
  18. #English-Language
  19. LANG = 1
  20.  
  21. .pas.exe:
  22.   tpc /DL$(LANG) $(286) $*
  23.   lzexe $*
  24.   $(COMSPEC) /C del $*.old
  25.  
  26. .pas.tpu:
  27.   tpc /DL$(LANG) $(286) $*
  28.  
  29. all: fdform18.zip
  30.  
  31. fdread.exe: fdread.asm cputest.asm
  32.   tasm fdread,fdread,fdread $(AOPT) /DCPU=/$G+
  33.   tlink fdread
  34.   lzexe fdread.exe
  35.   $(DELMAP)
  36.  
  37. fdr88.exe: fdread.asm
  38.   tasm fdread,fdread,fdr88 $(AOPT) /DCPU=/$G-
  39.   tlink fdread, fdr88.exe
  40.   lzexe fdr88.exe
  41.   $(DELMAP)
  42.  
  43. fdboot.049: fdboot.asm getboot.exe
  44.   tasm fdboot $(AOPT) /DLanguage=049
  45.   tlink /t fdboot,fdboot.sys
  46.   $(DELMAP)
  47.   getboot fdboot.sys fdboot.049
  48.  
  49. fdboot.001: fdboot.asm getboot.exe
  50.   tasm fdboot $(AOPT) /DLanguage=001
  51.   tlink /t fdboot,fdboot.sys
  52.   $(DELMAP)
  53.   getboot fdboot.sys fdboot.001
  54.  
  55. german\fdformat.exe: fdformat.pas baseconv.tpu desqview.tpu fdboot.049 auxdos.tpu
  56.   tpc /DL49 $(286) $&
  57.   lzexe $&
  58.   $(COMSPEC) /C del $&.old
  59.   $(COMSPEC) /C move fdformat.exe german
  60.  
  61. fdformat.exe: fdformat.pas baseconv.tpu desqview.tpu fdboot.001 auxdos.tpu
  62.   tpc /DL1 $(286) $*
  63.   lzexe $*
  64.   $(COMSPEC) /C del $*.old
  65.  
  66. baseconv.tpu: baseconv.pas
  67.  
  68. desqview.tpu: desqview.pas
  69.  
  70. auxdos.tpu: auxdos.pas
  71.  
  72. diskio.tpu: diskio.pas
  73.   tpc $(286) diskio
  74.  
  75. getboot.exe: getboot.pas
  76.  
  77. readboot.exe: readboot.pas diskio.tpu auxdos.tpu
  78.  
  79. wimage.exe: wimage.pas diskio.tpu auxdos.tpu
  80.  
  81. fdform18.zip: fdread.exe fdr88.exe german\fdformat.exe fdformat.exe getboot.exe readboot.exe fdboot.sys fdboot.049 fdboot.001 wimage.exe fdformat.new readme.1st makefile
  82.   pkzip -f -rp fdform18.zip
  83.